home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / softwareupdate / system / arexx_for_beginners / articles_01-10 / example3-2.rexx < prev    next >
OS/2 REXX Batch file  |  1995-06-01  |  219b  |  13 lines

  1. /* Example3-2.rexx */
  2.  
  3. PARSE ARG Name','Age
  4.  
  5. IF Name = '' | Age = '' THEN DO
  6.  
  7.   SAY 'You should have put your name and age after the RX Example3-2'
  8.   EXIT
  9.  
  10. END
  11.  
  12. SAY 'Hi there' Name||'. You say you are' Age' years old.'
  13.